H i t ' n ' M i x   R i p S c r i p t       @  O v e r l a y   S e l e c t e d   R i p s   R  r u n . p y   """
Description: Overlay Selected Rips
Category:
Shortcut:
Level: Beginners
"""

def ripscript():
	
	current_rip = ripx.current_view.rip
	if not current_rip:
		ripx.pop_up("Please open a rip to overlay selected rips")
		return

	for rip in ripx.riplist.selected_rips:
		rip.note_group(start=0.0).copy_to(rip=current_rip)
	    